home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.2 / Video Toaster v4.2.iso / programs / utilities / flyer version < prev    next >
Text File  |  1997-05-08  |  856b  |  46 lines

  1. ; This script allows the user to check the version number of their 
  2. ; flyer.library file and, if the Toaster: assign exists, their switcher.#?
  3. ; version.
  4. ; ®1997, TammyComeHome Productions...all bytes preserved...
  5.  
  6. ECHO "The current version of your"
  7. ECHO "flyer.library file is:"
  8.  
  9. CD LIBS:
  10.  
  11. ECHO ""  
  12.    version flyer.library full 
  13.  
  14. IF EXISTS TOASTER:
  15.  
  16. ECHO ""
  17. ECHO "The current version of your"
  18. ECHO "switcher file is:"
  19. ECHO ""
  20.  
  21. CD TOASTER:PROGRAMS
  22.    IF EXISTS SWITCHER.MAIN.AA 
  23.       version switcher.main.AA full
  24.    ENDIF
  25.  
  26.    IF EXISTS SWITCHER.MAIN
  27.       version switcher.main full
  28.    ENDIF
  29.  
  30. ENDIF
  31.  
  32. IF NOT EXISTS TOASTER:
  33.    ECHO ""
  34.    ECHO ""
  35.    ECHO "Well, you don't have your"
  36.    ECHO "Toaster: assign  active so" 
  37.    ECHO "I cannot give you your"
  38.    ECHO "switcher file version..."
  39.    ECHO ""
  40.    ECHO "Roll 'em around..."
  41. ENDIF
  42.  
  43. QUIT
  44.  
  45. ;END script
  46.